home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / mmu / modules / libraries / 68040.m < prev    next >
Encoding:
Text File  |  2002-10-28  |  1.8 KB  |  34 lines

  1. /*************************************************************************
  2.  ** 68040.library                                                 **
  3.  **                                                                     **
  4.  ** CPU driver library for the 68040          **
  5.  **                                                                     **
  6.  ** © 1999 THOR-Software, Thomas Richter                                **
  7.  ** No commercial use, reassembly, modification without prior, written  **
  8.  ** permission of the authors.                                          **
  9.  ** Including this library in any commercial software REQUIRES a        **
  10.  ** written permission and the payment of a small fee.                  **
  11.  **                                                                     **
  12.  **---------------------------------------------------------------------**
  13.  ** Definition of the library, and structures                           **
  14.  **                 **
  15.  ** $VER: 40.2 (31.10.99) © THOR                            **
  16.  *************************************************************************/
  17. #ifndef LIBRARIES_68040_M
  18. #define LIBRARIES_68040_M 
  19. MODULE 'exec/libraries','mmu/mmubase'
  20. /* There's really nothing in this library base you need to care about */
  21. OBJECT MC68040Base
  22.   Library:Library     /* more below this point */
  23.  
  24. #define MC68040_NAME '68040.library'
  25. /* Bit definitions for the FPUControl call, exception disable */
  26. FLAG FPUCtrl_BSUN=0,   /* disable branch or set on unordered */
  27.  FPUCtrl_INEX=1,   /* disable inexact result exception */
  28.  FPUCtrl_DIVZ=2,   /* disable divide by zero exception */
  29.  FPUCtrl_UNFL=3,   /* disable underflow exception */
  30.  FPUCtrl_OVFL=4,   /* disable overflow exception */
  31.  FPUCtrl_SNAN=5,   /* disable signalling NAN exception */
  32.  FPUCtrl_OPERR=6   /* disable operand error exception */
  33. #endif
  34.